aboutsummaryrefslogtreecommitdiff
path: root/src/app/manga/[title]/[id]
diff options
context:
space:
mode:
authorzephex-alt <[email protected]>2024-05-04 18:36:23 +0000
committerGitHub <[email protected]>2024-05-04 18:36:23 +0000
commitb299ee48e235c296c98cb3fa9675f27729f4a85f (patch)
treecb0b81bb035752307af784c9fba1b88e43d5e513 /src/app/manga/[title]/[id]
parentthis was the best fix that i could come up with (diff)
downloaddramalama-b299ee48e235c296c98cb3fa9675f27729f4a85f.tar.xz
dramalama-b299ee48e235c296c98cb3fa9675f27729f4a85f.zip
i guess I fixed it
Diffstat (limited to 'src/app/manga/[title]/[id]')
-rw-r--r--src/app/manga/[title]/[id]/[read]/page.jsx2
-rw-r--r--src/app/manga/[title]/[id]/page.jsx2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/app/manga/[title]/[id]/[read]/page.jsx b/src/app/manga/[title]/[id]/[read]/page.jsx
index dc031fd..a2b2555 100644
--- a/src/app/manga/[title]/[id]/[read]/page.jsx
+++ b/src/app/manga/[title]/[id]/[read]/page.jsx
@@ -1,8 +1,6 @@
import styles from "./read.module.css";
import Image from "next/image";
-export const runtime = "edge";
-
export default async function Read({ params }) {
const chapterId = params.read;
const results = await getPages(chapterId);
diff --git a/src/app/manga/[title]/[id]/page.jsx b/src/app/manga/[title]/[id]/page.jsx
index 9d60e0a..37fb3e5 100644
--- a/src/app/manga/[title]/[id]/page.jsx
+++ b/src/app/manga/[title]/[id]/page.jsx
@@ -5,8 +5,6 @@ import { redirect } from "next/navigation";
import { FaStar } from "react-icons/fa";
import { PreFetchChaterLinks } from "../../cacher";
-export const runtime = "edge";
-
export default async function MangaInfo({ params }) {
const id = params.id;
const data = await getMangaInfo(id);